home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / dcom / modems-part1 / 7940 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.9 KB

  1. Path: dsm6.dsmnet.com!usenet
  2. From: blockd@dsmnet.com (Dennis Block)
  3. Newsgroups: comp.dcom.modems
  4. Subject: Re: Hayes  Accura 28.8 v.34+ Fax
  5. Date: 15 Mar 1996 00:40:32 GMT
  6. Organization: Dentron Computers
  7. Message-ID: <4iaea0$gta@dsm6.dsmnet.com>
  8. References: <3147A467.383@minet.gov.mb.ca>
  9. NNTP-Posting-Host: slppp14.dsmnet.com
  10. Mime-Version: 1.0
  11. Content-Type: Text/Plain; charset=US-ASCII
  12. X-Newsreader: WinVN 0.99.7
  13.  
  14. In article <3147A467.383@minet.gov.mb.ca>, gcorr@minet.gov.mb.ca says...
  15. >
  16. >I have been trying to get this external modem setup with error 
  17. correction 
  18. >on my ISP.  I have used the factory defaults as well as setting up my 
  19. own 
  20. >init string nothing seems to be working.  Thanks for any suggestions.
  21. >Gerry.
  22.  
  23. Can you get an init string from your ISP? If so, then you can "convert" 
  24. it to your modem. Attached is the Trumpet login script that my ISP uses 
  25. and my modifications to it. Remember the lines marked with # are 
  26. comments only. You can see what they recommended and what I use. While I 
  27.  have an Optima, I would guess the Accura would work with this.
  28. #   This dialing script is set up for the USR 14.4 Sportster.  
  29. #   The script may need to be modified for your perticular modem.
  30. #   The comments before any commands is to specify what the setting
  31. #   is for the USR so that conversions can be made.
  32. #
  33. #   initialize modem
  34. #
  35. display Initializing modem...\n
  36. output ATZ\n
  37. input 10 OK\n
  38. #
  39. #   hardware flow control please...
  40. #
  41. #   &H0 = Flow control disabled
  42. #   &IO = Software flow control disabled 
  43. #   output AT&K0\n
  44. #   input 10 OK\n
  45. #
  46. #   Q0 = Display result codes
  47. #   V1 = Verbal codes
  48. #   E0 = Command mode local echo, echo off
  49. #   S0=0 = Never answer
  50. output AT&K0Q0V1E0S0=0\n
  51. input 10 OK\n
  52. #
  53. #   set modem to indicate DCD
  54. #
  55. #   output at&c1
  56. #   input 10 OK\n
  57. #
  58. #   send phone number
  59. #
  60. display Dialing...\n
  61. output ATDT270-0452\n
  62. #
  63. #   now we are connected.
  64. #
  65. display Waiting for connection...\n
  66. input 30 CONNECT
  67. input 10 \n
  68. sleep 2
  69. #
  70. #   wait till it's safe to send because some modem's hang up
  71. #   if you transmit during the connection phase
  72. #
  73. #   wait 30 dcd
  74. #
  75. #   now prod the terminal server
  76. #
  77. display Setting speed...\n
  78. output \r
  79. sleep 1
  80. #
  81. #   wait for the username prompt
  82. #
  83. display Waiting for username prompt...\n
  84. input 30 Username:
  85. username Enter your Internet Access Username
  86. display \nSending username...\n
  87. output \u\r
  88. #
  89. #   and the password
  90. #
  91. display Waiting for password prompt...\n
  92. input 30 Password:
  93. password Enter your Internet Access Password
  94. display \nSending password...\n
  95. output \p\r
  96. sleep 1
  97. #
  98. #   wait for the local prompt
  99. #
  100. display Waiting for terminal server...\n
  101. input 30 DSMnet>
  102. output slip default\r
  103. sleep 1
  104. #
  105. #
  106. #
  107. display Retrieving IP address
  108. output show port slip\n
  109. input 10 ddress
  110. address 10
  111. input 10 \n
  112. #
  113. #   Enter Terminal Server Prompt
  114. #
  115. #
  116. display \n
  117. display Connected to the Internet.  Your IP address is \i.\n
  118. display (Ready for you to start an internet application)\n
  119. #
  120. #   now we are finished.
  121. #
  122. display \7
  123. online
  124.  
  125.  
  126.